/* Стилі наші проєкти */
.container-skills {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container-skills h1 {
      text-align: center;
      margin: 50px auto;
    }
.container-skills p.lead {
      text-align: center;
      margin-bottom: 40px;
      color: yellow;
    }

/* Сітка проєктів */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(280px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.project-card {
	height: 300px;
	display: grid;
	grid-template-columns: minmax(280px, 0.5fr) minmax(280px, 1fr);
    gap: 100px;
    /*display: flex;
    flex-direction: row;
    align-items: left;*/
    transition: transform 0.2s, box-shadow 0.2s;
	padding: 50px;
	margin: 20px;
}
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(241, 245, 14, 0.932);
}
.project-card img {
	max-width: 400px;
	max-height: 280px;
    object-fit: cover;
    display: block;
}
.project-content {
	width: 80%;
    height: 90%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 1px 1px rgb(228, 243, 13);
	border-bottom: 8px solid rgb(255, 251, 0);
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 24px;
	margin-left: 50px;
    display: flex;
	flex-direction: column;
	align-items:center;
	justify-content: center;
}
.project-content h2 {
    font-size: 1.25rem;
	color: yellow;
	font-size: 30pt;
	text-align: center;
	margin: 30px 0;
}
.project-content p {
    flex: 1;
    color: #fbff05;
	text-align: center;
}
.project-content a {
    align-self: flex-start;
    text-decoration: none;
    color: #ffee00;
    font-weight: bold;
    transition: color 0.2s;
}
.project-content a:hover {
    color: #aac709;
}

/* Адаптивні зміни наші проєкти*/
    @media (max-width: 600px) {
      .project-card img {
        height: 140px;
      }
    }












